Uses of Interface
com.google.common.base.Function
-
Packages that use Function Package Description com.google.common.base edu.uci.ics.jung.algorithms.scoring -
-
Uses of Function in com.google.common.base
Classes in com.google.common.base that implement Function Modifier and Type Class Description private static classFunctions.ConstantFunction<E>private static classFunctions.ForMapWithDefault<K,V>private static classFunctions.FunctionComposition<A,B,C>private static classFunctions.FunctionForMapNoDefault<K,V>private static classFunctions.IdentityFunctionprivate static classFunctions.PredicateFunction<T>private static classFunctions.SupplierFunction<T>private static classFunctions.ToStringFunctionFields in com.google.common.base declared as Function Modifier and Type Field Description private Function<A,? extends B>Functions.FunctionComposition. f(package private) Function<A,? extends B>Predicates.CompositionPredicate. fprivate Function<B,C>Functions.FunctionComposition. gMethods in com.google.common.base that return Function Modifier and Type Method Description static <A,B,C>
Function<A,C>Functions. compose(Function<B,C> g, Function<A,? extends B> f)static <E> Function<java.lang.Object,E>Functions. constant(E value)static <K,V>
Function<K,V>Functions. forMap(java.util.Map<K,? extends V> map, V defaultValue)static <K,V>
Function<K,V>Functions. forMap(java.util.Map<K,V> map)static <T> Function<T,java.lang.Boolean>Functions. forPredicate(Predicate<T> predicate)static <T> Function<java.lang.Object,T>Functions. forSupplier(java.util.function.Supplier<T> supplier)static <E> Function<E,E>Functions. identity()static Function<java.lang.Object,java.lang.String>Functions. toStringFunction()Methods in com.google.common.base with parameters of type Function Modifier and Type Method Description static <A,B,C>
Function<A,C>Functions. compose(Function<B,C> g, Function<A,? extends B> f)static <A,B>
Predicate<A>Predicates. compose(Predicate<B> predicate, Function<A,? extends B> function)Constructors in com.google.common.base with parameters of type Function Constructor Description CompositionPredicate(Predicate<B> p, Function<A,? extends B> f)FunctionComposition(Function<B,C> g, Function<A,? extends B> f) -
Uses of Function in edu.uci.ics.jung.algorithms.scoring
Methods in edu.uci.ics.jung.algorithms.scoring with parameters of type Function Modifier and Type Method Description protected voidBetweennessCentrality. computeBetweenness(java.util.Queue<V> queue, Function<? super E,? extends java.lang.Number> edge_weights)Constructors in edu.uci.ics.jung.algorithms.scoring with parameters of type Function Constructor Description BetweennessCentrality(Graph<V,E> graph, Function<? super E,? extends java.lang.Number> edge_weights)Calculates betweenness scores based on the all-pairs weighted shortest paths in the graph.
-